6aa222f5768a9a05b8f3cf8dd97415654a129698,gdx/src/com/badlogic/gdx/graphics/Color.java,Color,sub,#Color#,126

Before Change


		this.g -= color.g;
		this.b -= color.b;
		this.a -= color.a;
		clamp();
		return this;
	}

	public void clamp () {

After Change


		this.g -= color.g;
		this.b -= color.b;
		this.a -= color.a;
		return clamp();
	}

	/** @return this Color for chaining */